home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / biblio / bibtex / utils / bibclean / xtypes.h < prev   
C/C++ Source or Header  |  1992-10-06  |  2KB  |  52 lines

  1. /* -*-C-*- xtypes.h */
  2. /**********************************************************************/
  3. /****************************** xtypes ********************************/
  4. /**********************************************************************/
  5.  
  6. /* $Id: xtypes.h,v 1.6 1992/10/08 01:42:01 beebe Exp beebe $
  7.  * $Log: xtypes.h,v $
  8.  * Revision 1.6  1992/10/08  01:42:01  beebe
  9.  * Update for C++.
  10.  *
  11.  * Revision 1.5  1992/07/10  18:09:20  beebe
  12.  * Add use of HAVE_TYPES_H.
  13.  *
  14.  * Revision 1.4  1992/03/10  14:13:53  beebe
  15.  * *** empty log message ***
  16.  *
  17.  * Revision 1.3  1992/03/06  14:56:35  beebe
  18.  * Complete two-month long development of version 3.0.114.  See
  19.  * 00revhst.txt for details.
  20.  *
  21.  * Revision 1.3  1992/03/06  14:56:35  beebe
  22.  * Complete two-month long development of version 3.0.114.  See
  23.  * 00revhst.txt for details.
  24.  *
  25.  * Revision 1.2  1992/02/29  19:42:20  beebe
  26.  * Update for version 3.0.114 [29-Feb-1992] following two-month
  27.  * major overhaul and compilation testing on numerous machines.
  28.  *
  29.  */
  30.  
  31. #ifndef XTYPES_H_DEFINED_
  32. #define XTYPES_H_DEFINED_
  33.  
  34. /***********************************************************************
  35. This file includes the system types.h file, which does not have
  36. a standard location.  Primos does not even have one.
  37. ***********************************************************************/
  38.  
  39. #ifndef OS_H_DEFINED_
  40. #include "os.h"
  41. #endif /* OS_H_DEFINED_ */
  42.  
  43. #if HAVE_TYPES_H
  44. #if HAVE_SYS_DIR
  45. #include <sys/types.h>
  46. #else /* NOT HAVE_SYS_DIR */
  47. #include <types.h>
  48. #endif /* HAVE_SYS_DIR */
  49. #endif /* HAVE_TYPES_H */
  50.  
  51. #endif /* XTYPES_H_DEFINED_ */
  52.